Platform Explorer / Nuxeo Platform 6.0

Contribution org.nuxeo.ecm.platform.comment.coreTypes--doctype

This contribution is part of XML component org.nuxeo.ecm.platform.comment.coreTypes inside nuxeo-platform-comment-6.0.jar

Extension Point

Extension point doctype of component TypeService.

Contributed Items

  • <doctype extends="Folder" name="CommentRoot">
          <facet name="HiddenInNavigation"/>
        </doctype>
  • <doctype extends="Document" name="Comment">
          <schema name="comment"/>
          <schema name="common"/>
          <schema name="dublincore"/>
          <facet name="HiddenInNavigation"/>
          <prefetch>
            dc:title, dc:modified, comment.author, comment.text,
            comment.creationDate
          </prefetch>
        </doctype>

XML Source

<extension point="doctype" target="org.nuxeo.ecm.core.schema.TypeService">

    <doctype extends="Folder" name="CommentRoot">
      <facet name="HiddenInNavigation"/>
    </doctype>

    <doctype extends="Document" name="Comment">
      <schema name="comment"/>
      <schema name="common"/>
      <schema name="dublincore"/>
      <facet name="HiddenInNavigation"/>
      <prefetch>
        dc:title, dc:modified, comment.author, comment.text,
        comment.creationDate
      </prefetch>
    </doctype>

  </extension>